home *** CD-ROM | disk | FTP | other *** search
/ Champak 141 / (Vol 141) Oct 17 2011.iso / Games / Clueless.swf / scripts / DressupTheme.as < prev    next >
Encoding:
Text File  |  2011-10-17  |  1.0 KB  |  44 lines

  1. package
  2. {
  3.    public class DressupTheme
  4.    {
  5.        
  6.       
  7.       public var Description:String;
  8.       
  9.       public var ThemePartner:Partner = null;
  10.       
  11.       public var HintMessage:String;
  12.       
  13.       public var TargetAttributes:Array;
  14.       
  15.       public var Background:String;
  16.       
  17.       public var SampleParts:Array;
  18.       
  19.       public var Title:String;
  20.       
  21.       public function DressupTheme()
  22.       {
  23.          TargetAttributes = new Array();
  24.          SampleParts = new Array();
  25.          ThemePartner = null;
  26.          super();
  27.       }
  28.       
  29.       public function clone() : *
  30.       {
  31.          var _loc1_:DressupTheme = null;
  32.          _loc1_ = new DressupTheme();
  33.          _loc1_.Title = Title;
  34.          _loc1_.HintMessage = HintMessage;
  35.          _loc1_.TargetAttributes = TargetAttributes;
  36.          _loc1_.Background = Background;
  37.          _loc1_.SampleParts = SampleParts;
  38.          _loc1_.Description = Description;
  39.          _loc1_.ThemePartner = ThemePartner;
  40.          return _loc1_;
  41.       }
  42.    }
  43. }
  44.